HiSEN

Maven镜像库设置 - maven mirrors - maven 镜像 阿里

配置文件:

1
yourPath\maven-3.3.9\conf\settings.xml

找到里面的,添加镜像即可

1
2
<mirrors>
</mirrors>

这里写的是被镜像的ID

如果写成:* (星号)

所有的请求都会到这个镜像上,包括各种本地库

注意:千万不要配成*

否则内网的仓库或者你配的镜像里面没有一下jar包的时候不会去别的地方搜索

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!--阿里云:速度挺快-->
<mirror>
<id>nexus-aliyun</id>
<mirrorOf>central</mirrorOf>
<name>Nexus aliyun</name>
<url>http://maven.aliyun.com/nexus/content/groups/public</url>
</mirror>

<!--谷歌:北京速度不错-->
<mirror>
<id>google-maven-central</id>
<name>Google Maven Central</name>
<url>https://maven-central.storage.googleapis.com</url>
<mirrorOf>central</mirrorOf>
</mirror>